{% extends "base.html" %} {% load static %} {% block content %}

{{ page_title }}

{% csrf_token %} {% if form.non_field_errors %}
{% for error in form.non_field_errors %} {{ error }} {% endfor %}
{% endif %} {% for field in form %}
{{ field }} {% if field.help_text %}
{{ field.help_text }}
{% endif %} {% if field.errors %}
{% for error in field.errors %} {{ error }} {% endfor %}
{% endif %}
{% endfor %}
Отмена
{% endblock %} {% block extra_js %} {% endblock %}